home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvtools / demos / telecomdemo / glob_vars.c < prev    next >
C/C++ Source or Header  |  1997-05-08  |  2KB  |  66 lines

  1. #ifndef lint
  2. static char SccsId[]= "@(#)glob_vars.c    V1.5    3/17/95";
  3. #endif
  4. /*
  5.  |      File name: glob_vars.c
  6.  |========================================================================
  7.  |
  8.  |      Copyright (c) 1990 -- V.I. Corporation
  9.  |
  10.  |========================================================================
  11.  */
  12.  
  13. #include "simulate.h"
  14. #include "tlc_fundecl.h"
  15.  
  16.  
  17. RECTANGLE
  18.   FullScreen =
  19. {0, 0, 32767, 32767}, WholeDrawing =
  20. {-16383, -16383, 16383, 16383};
  21.  
  22. OBJECT
  23.   LogScreen, StatusScreen, ControlScreen;
  24.  
  25. CHAR
  26. * TopStatusView = "top_map.v", *SmallmapViewName = "smallmap.v", *FixboxViewName = "fixbox.v", *ControlViewName = "sim_control.v", *DialogViewName = "dialog.v", *MsgLogViewName = "msg_log.v";
  27.  
  28. CONTROL_PARAMS Control;
  29. DIALOG_INFO Dialog;
  30. FIXBOX_INFO Fixbox;
  31. SIM_PARAMS SimParams;
  32. SMALLMAP_INFO Smallmap;
  33.  
  34. /*
  35.  *   Define information to display for each type of part.
  36.  */
  37. PARTS_INFO Parts[NUM_PARTS] =
  38. {
  39.   {"CRT", "IntelliTerms Inc.",
  40. "Acme CompuService\n125 Main St.\nNew York, NY  10027\n(212) 555-8372",
  41.    "Walter Fink"},
  42.   {"X25 Network", "LAN Cruiser Ltd.",
  43.    "Net Repair National\n20 Revell Ave.\nChicago, IL  60649\n(312) 555-7864",
  44.    "Paul Cronin"},
  45.   {"CPU", "Chromatics Corp.",
  46. "Star Maintenence\n96 Chestnut St.\nBoston, MA  02127\n(617) 555-2666",
  47.    "Richard Kristek"},
  48.   {"Multiplexor", "Combinatorics Inc.",
  49.    "Brandt Electronics\n90 Park Ave.\nLos Angeles, CA  90059\n(213) 555-2631",
  50.    "Helen Daley"},
  51.   {"Switch", "Tele-Electronics",
  52. "Tele-Electronics\n150 Fearing St.\nDallas, TX  75227\n(214) 555-1874",
  53.    "Tilman Lukas"},
  54.   {"Gen*Pac", "Master Circuits Inc.",
  55.    "Tele Maintenence Co.\n39 Campbell Dr.\nAtlanta, GA  30337\n(404) 555-4364",
  56.    "Patrick Johnstone"},
  57.   {"PBX", "V.I. Electronics Inc.",
  58. "Quaxx Inc.\n1040 N. Pleasant St.\nSeattle, WA  98106\n(206) 555-3721",
  59.    "Jim Champoux"},
  60.   {"Channel Card", "Copeland Electronics",
  61.    "LHC Inc.\n222 North East St.\nSan Francisco, CA  94211\n(415) 555-4323",
  62.    "Horace Hewlett"},
  63.   {"Telephone", "Tokunagu Inc.",
  64.    "Tokunagu of America\n24 Parsons Ave\nCleveland, OH  44122\n(216) 555-9882",
  65.    "Lon Bull"}};
  66.